home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib6
/
v_08_11
/
8n11088d
< prev
next >
Wrap
Text File
|
1995-11-01
|
230b
|
16 lines
class It {
public:
It( List &l) { current = l;}
Truth isend() { return current.isempty(); }
T get()
{
T r = current.get();
current = current.tail();
return r;
}
private:
List current;
};